Generate all permutations of a listΒΆ
Generate all permutations of a list in python.
import itertools
print(list(itertools.permutations([1, 2, 3])))
Output:
[(1, 2, 3), (1, 3, 2), (2, 1, 3), (2, 3, 1), (3, 1, 2), (3, 2, 1)]
import itertools
print(list(itertools.permutations([1, 2, 3])))
Output:
[(1, 2, 3), (1, 3, 2), (2, 1, 3), (2, 3, 1), (3, 1, 2), (3, 2, 1)]